home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / window2.zip / WINDOW.H < prev    next >
Text File  |  1993-01-04  |  574b  |  15 lines

  1. typedef struct wcb        /* --- window control block    ---        */
  2. {
  3.     int        ulx,        /* upper left corner x coordinate    */
  4.             uly,        /* ditto y coordinate                */
  5.             xsize,        /* line width of inside of window    */
  6.             ysize,        /* number of lines inside of window    */
  7.             cx,            /* current cursor offset in window    */
  8.             cy,
  9.             style,        /* attribute to be used in window    */
  10.             *scrnsave,    /* pointer to screen save buffer    */
  11.             oldx,        /* cursor position when window was    */
  12.             oldy,        /* opened (used for screen restore)    */
  13.             wpage;        /* video page when window drawn        */
  14. } WINDOW, *WINDOWPTR;
  15.